home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CD Concept 6
/
CD Concept 06.iso
/
mac
/
UTILITAIRE
/
RLaB
/
rlib
/
asinh.r
< prev
next >
Wrap
Text File
|
1994-02-21
|
320b
|
15 lines
//-------------------------------------------------------------------//
// Syntax: asinh ( X )
// Description:
// Asinh is the inverse hyperbolic sine of the element(s) of X.
//-------------------------------------------------------------------//
asinh = function ( x )
{
return log (x + sqrt (x.^2 + 1));
};